revision:
The <param> tag is used to define parameters for an <object> element. We can use more than one <param> tag within an <object> element in any order, but each tag must contain "name" and "value" attribute and should be placed at the start of the content. The <param> tag controls the behaviour of the <object> element using a different pair of the "name" of value attributes, such as autoplay, controller, etc.
name ; value: text ; specifies the name of a parameter.
value ; value: text; specifies the value of a parameter.
<object>
<param name=" " value=" ">
<param name=" " value=" ">
</object>
code:
<object class="example" data="../pics/horse.wav">
<param name="autoplay" value="true">
</object>
coding:
<object class="example" data="../pics/peacock.wav">
<param name="autoplay" value="true">
</object>